home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / README.TXT < prev    next >
Encoding:
Text File  |  1995-07-19  |  2.1 KB  |  43 lines

  1. ---------------------- Notes on the sample sources ------------------------
  2.  
  3. 1) All of the example programs have been pre-built, and are in the .\BIN
  4. directory.  The sources for individual chapters are in the appropriately
  5. named subdirectory beneath this directory (e.g., .\CHAP5 contains the sources
  6. for chapter 5.)
  7.  
  8. 2) These programs were compiled with Visual C++ 2.0, and where appropriate,
  9. Borland C++ 4.5.
  10.  
  11. 3) Many of these examples assume the existance of the "combined" Win32SDK
  12. that encompasses both NT and Win95.  At the time these examples were created,
  13. Visual C++ had not been updated to include the Win95 specific header files
  14. and libraries.  If you don't have the Win32 SDK, but have a Win95 aware
  15. version of Visual C++, you can probably make minor changes to the .MAK files
  16. in order to make the sources compile.
  17.  
  18. 4) Whereever possible, I tried to keep all the program code in straight
  19. 'C' code, and use as little assemble as possible.  However, some of the
  20. sample programs absolutely require .ASM files.  For these files, you'll
  21. need MASM 6.11 (or TASM32 if you're building with the Borland C++ tools).
  22. There is no way around this.
  23.  
  24. 5) Some of the programs are so simple that a full blown .MAK file
  25. isn't necessary to build them.  Instead, they can be compiled from
  26. the command line.  Programs of this type can be built using the .BAT
  27. files in the same directory as the program sources.
  28.  
  29. 6) Where a .MAK file is provided, simply type "NMAKE <project.mak>", where
  30. <project.mak> is the name of the .MAK file.
  31.  
  32. 7) I'm not a big fan of Integrated Development Environments (IDEs),
  33. and I did not create any IDE project files for these programs.  For
  34. the most part, the programs are very straightforward (i.e., one or
  35. more .C files, some .H files, and maybe a .RC or .DEF file).  It
  36. shouldn't be hard to create a project on your own if you want to work
  37. with these sources in your IDE.
  38.  
  39. 8) Most of the programs have been also built and tested with Borland C++.
  40. Where I had current Borland C++ .MAK files, they are included in the
  41. source directory, with the extension ".BOR".
  42.  
  43.